home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-604.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  78 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(15532);
  11.  script_version ("$Revision: 1.2 $");
  12.  script_cve_id("CAN-2004-0891");
  13.  
  14.  name["english"] = "RHSA-2004-604: gaim";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   An updated gaim package that fixes security issues, fixes various bugs, and
  21.   includes various enhancements for Red Hat Enterprise Linux 3 is now
  22.   avaliable.
  23.  
  24.   The gaim application is a multi-protocol instant messaging client.
  25.  
  26.   A buffer overflow has been discovered in the MSN protocol handler. When
  27.   receiving unexpected sequence of MSNSLP messages, it is possible that an
  28.   attacker could cause an internal buffer overflow, leading to a crash or
  29.   possible code execution. The Common Vulnerabilities and Exposures project
  30.   (cve.mitre.org) has assigned the name CAN-2004-0891 to this issue.
  31.  
  32.   This updated gaim package also fixes multiple user interface, protocol, and
  33.   error handling problems, including an ICQ communication encoding issue.
  34.  
  35.   Additionally, these updated packages have compiled gaim as a PIE (position
  36.   independent executable) for added protection against future security
  37.   vulnerabilities.
  38.  
  39.   All users of gaim should upgrade to this updated package, which includes
  40.   various bug fixes, as well as a backported security patch.
  41.  
  42.  
  43.  
  44.  
  45. Solution : http://rhn.redhat.com/errata/RHSA-2004-604.html
  46. Risk factor : High';
  47.  
  48.  script_description(english:desc["english"]);
  49.  
  50.  summary["english"] = "Check for the version of the gaim packages";
  51.  script_summary(english:summary["english"]);
  52.  
  53.  script_category(ACT_GATHER_INFO);
  54.  
  55.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  56.  family["english"] = "Red Hat Local Security Checks";
  57.  script_family(english:family["english"]);
  58.  
  59.  script_dependencies("ssh_get_info.nasl");
  60.  
  61.  script_require_keys("Host/RedHat/rpm-list");
  62.  exit(0);
  63. }
  64.  
  65. include("rpm.inc");
  66. if ( rpm_check( reference:"gaim-1.0.1-1.RHEL3", release:"RHEL3") )
  67. {
  68.  security_hole(0);
  69.  exit(0);
  70. }
  71.  
  72. if ( rpm_exists(rpm:"gaim-", release:"RHEL3") )
  73. {
  74.  set_kb_item(name:"CAN-2004-0891", value:TRUE);
  75. }
  76.  
  77. set_kb_item(name:"RHSA-2004-604", value:TRUE);
  78.